home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
ip
/
ka9q
/
MNetsrc.hqx
/
Mac TCP_IP Source v.33
/
mac.h
< prev
next >
Wrap
Text File
|
1989-03-14
|
494b
|
29 lines
/* Asynch controller control block */
#define MAX_STORE 1024
struct Store_input {
char *head;
char *store;
char *tail;
int amt;
unsigned bufsize;
};
struct asy {
unsigned int speed; /* Line speed */
int portIn;
int portOut;
int devopen;
char *tty;
int addr;
char *recv_buf;
};
extern struct asy asy[];
extern unsigned nasy; /* Actual number of asynch lines */
#define ASY_MAX 2 /* Two asynch ports on the MAC */
struct RemoveIt {
struct RemoveIt *next;
char *name_ptr;
};